"pdf_open: Not a PDF 1.[1-5] file." when typesetting TeX file in TextMate
Posted
by
Manti
on Super User
See other posts from Super User
or by Manti
Published on 2011-01-02T14:29:57Z
Indexed on
2011/01/02
14:55 UTC
Read the original article
Hit count: 195
I have a TeX file, which is typeset by XeLaTeX
. The file has \includegraphics{coverimage.eps}
on the first page, and coverimage.eps
is located in the same directory as the TeX file. OS: MacOS 10.6.5, TextMate 1.5.10, xelatex 3.1415926-2.2-0.9997.4 (TeX Live 2010)
If I run xelatex doc.tex
in console, file compiles without errors, and eps file is included. If I typeset it in TextMate (xelatex engine is selected in preferences), I get the following error:
** WARNING ** pdf_open: Not a PDF 1.[1-5] file.
** WARNING ** Failed to include image file "./coverimage.eps"
** WARNING ** >> Please check if
** WARNING ** >> rungs -q -dNOPAUSE -dBATCH -sPAPERSIZE=a0 -sDEVICE=pdfwrite -dCompatibilityLevel=%v -dAutoFilterGrayImages=false -dGrayImageFilter=/FlateEncode -dAutoFilterColorImages=false -dColorImageFilter=/FlateEncode -sOutputFile=%o %i -c quit
** WARNING ** >> %o = output filename, %i = input filename, %b = input filename without suffix
** WARNING ** >> can really convert "./coverimage.eps" to PDF format image.
** WARNING ** pdf: image inclusion failed for "coverimage.eps".
** WARNING ** Failed to read image file: coverimage.eps
** WARNING ** Interpreting special command PSfile (ps:) failed.
** WARNING ** >> at page="1" position="(107.149, 124.566)" (in PDF)
** WARNING ** >> xxx "PSfile="coverimage.eps" llx=0 lly=0 urx=408 ury=526 rwi=3809
and there is no image included in the resulting file (but text looks ok).
I am not sure whether it is the error of xelatex or TextMate LaTeX bundle. What I tried to do:
As I said,
xelatex doc.tex
from console works. The exact command line that TextMate uses is:xelatex -interaction=nonstopmode -file-line-error-style -synctex=1
But it works from console too.
If I convert the image to pdf (and fix the .tex file accordingly), typesetting from TextMate works too.
I tried running
rungs
with parameters specified in the error message, and got valid .pdf file with image as a result.I compared .log files from typesetting in TextMate and in console, they are absolutely identical except for this error message (in particular, version of
xelatex
is the same).
Does anyone know what can cause this? Please tell me if you need any additional information.
Thank you in advance.
© Super User or respective owner